home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Snippets / Development Tools & Languages / AEGestalt 1.0 / UGrayFillAdorner.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  522 b   |  27 lines  |  [TEXT/MPS ]

  1. //     Copyright © 1991-92 Apple Computer, Inc. All rights reserved.
  2. //     UGrayfillAdorner.h
  3. //    Kent Sandvik DTS
  4. //    This file contains the TGrayFill class, the gray background 
  5. //    adornment in the window
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __UGRAYFILLADORNER__
  11. #define __UGRAYFILLADORNER__
  12.  
  13. #ifndef __AEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. class TGrayFill : public TAdorner
  18. {
  19. public:
  20.     TGrayFill();
  21.     virtual pascal void Draw(TView* itsView,
  22.                              const VRect&        /*area*/);
  23. };
  24.  
  25. #endif __UGRAYFILLADORNER__
  26.  
  27.